home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / EDUCMATH / ALGEBRA.LZH / HCALC.DOC < prev    next >
Text File  |  1986-09-21  |  2KB  |  51 lines

  1.  
  2.              DOCUMENTATION FOR HCALC.COM
  3.                    (MS-DOS)
  4.  
  5.      The program named CALCULATOR by Warren Smith and converted to
  6.      TURBO    PASCAL has been renamed to HCALC.COM.  This is a stan-
  7.      dard algebraic style program without the use of equal signs.
  8.  
  9.      The program is booted in by typing  HCALC  <cr>.  In order to
  10.      get  help, type:  ?  To exit to MS-DOS, at the beginning of a
  11.      line, type:  $
  12.  
  13.      In addition to all of the standard operands + - * and /,  you
  14.      can use trig functions, square roots, squares, factorials and
  15.      PI.  Except for PI, to get the values sought after, you  must
  16.      follow the proper syntax.
  17.  
  18.      The proper syntax is to enclose the value to be operated upon
  19.      within  parenthesis  ()  preceeded by the operator.  (You may
  20.      use upper or lower case at will).
  21.  
  22.      Examples are shown below:
  23.  
  24.         sqr (4)<cr>       answer will be 16.0000
  25.            SQRT (64)<cr>       answer will be 8.0000
  26.          factor (7)<cr>       answer will be 5040.0000
  27.         SIN (45)<cr>       answer will be 0.707
  28.          pi<cr>        answer will be 3.14159
  29.  
  30.      When using terms with exponents, show them as follows:
  31.  
  32.      (3*10^6)*(4*10^9)<cr>       answer will be 11.9999999999999990
  33.  
  34.      (The 10^6 represents ten to the sixth power.    You must indi-
  35.      cate the power of ten you want use in the expression.)
  36.  
  37.      If you do not enclose the value within parenthesis, the  pro-
  38.      gram  will  not work and you will get wrong answers.  Also if
  39.      you type: !<cr>  you will go into the debugging mode and  the
  40.      intermediate steps of the calculation will be displayed prior
  41.      to the answer.  To stop debug mode type !<cr>    at the    begin-
  42.      ning of a line and this will toggle it off.
  43.  
  44.      You may utilize these operations as part of the expression to
  45.      be solved.
  46.  
  47.      This documentation is placed in the public domain on  10-5-84
  48.      by  Alan S. Raskind, and  may be used, transmitted to or from
  49.      anyone without charge.
  50.  
  51.